home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1997 / HAM Radio 1997.iso / vcls / moden / adxport.dfm / adxport.txt
Text File  |  1996-04-08  |  3KB  |  186 lines

  1. object ComPortOptions: TComPortOptions
  2.   Left = 284
  3.   Top = 121
  4.   BorderStyle = bsDialog
  5.   Caption = 'Com Port Options'
  6.   ClientHeight = 287
  7.   ClientWidth = 510
  8.   Font.Color = clBlack
  9.   Font.Height = -13
  10.   Font.Name = 'Arial'
  11.   Font.Style = [fsBold]
  12.   PixelsPerInch = 96
  13.   Position = poScreenCenter
  14.   TextHeight = 16
  15.   object FlowControlBox: TGroupBox
  16.     Left = 352
  17.     Top = 8
  18.     Width = 153
  19.     Height = 217
  20.     Caption = '&Flow control:'
  21.     TabOrder = 0
  22.     object Label1: TLabel
  23.       Left = 14
  24.       Top = 103
  25.       Width = 61
  26.       Height = 16
  27.       Caption = 'Xon char:'
  28.     end
  29.     object Label2: TLabel
  30.       Left = 14
  31.       Top = 131
  32.       Width = 61
  33.       Height = 16
  34.       Caption = 'Xoff char:'
  35.     end
  36.     object DTRRTS: TCheckBox
  37.       Left = 12
  38.       Top = 21
  39.       Width = 97
  40.       Height = 17
  41.       Caption = 'DTR/DSR'
  42.       TabOrder = 0
  43.     end
  44.     object RTSCTS: TCheckBox
  45.       Left = 12
  46.       Top = 40
  47.       Width = 97
  48.       Height = 17
  49.       Caption = 'RTS/CTS'
  50.       State = cbChecked
  51.       TabOrder = 1
  52.     end
  53.     object SoftwareXmit: TCheckBox
  54.       Left = 12
  55.       Top = 59
  56.       Width = 138
  57.       Height = 17
  58.       Caption = 'Software transmit'
  59.       TabOrder = 2
  60.     end
  61.     object SoftwareRcv: TCheckBox
  62.       Left = 12
  63.       Top = 78
  64.       Width = 133
  65.       Height = 17
  66.       Caption = 'Software receive'
  67.       TabOrder = 3
  68.     end
  69.     object Edit1: TEdit
  70.       Left = 86
  71.       Top = 99
  72.       Width = 27
  73.       Height = 24
  74.       TabOrder = 4
  75.       Text = '17'
  76.     end
  77.     object Edit2: TEdit
  78.       Left = 86
  79.       Top = 127
  80.       Width = 27
  81.       Height = 24
  82.       TabOrder = 5
  83.       Text = '19'
  84.     end
  85.   end
  86.   object OK: TButton
  87.     Left = 16
  88.     Top = 240
  89.     Width = 89
  90.     Height = 33
  91.     Caption = 'OK'
  92.     Default = True
  93.     TabOrder = 1
  94.     OnClick = OKClick
  95.   end
  96.   object Cancel: TButton
  97.     Left = 128
  98.     Top = 240
  99.     Width = 89
  100.     Height = 33
  101.     Cancel = True
  102.     Caption = 'Cancel'
  103.     TabOrder = 2
  104.     OnClick = CancelClick
  105.   end
  106.   object Comports: TRadioGroup
  107.     Left = 8
  108.     Top = 8
  109.     Width = 169
  110.     Height = 89
  111.     Caption = '&Com ports:'
  112.     Columns = 2
  113.     Items.Strings = (
  114.       'Com1'
  115.       'Com2'
  116.       'Com3'
  117.       'Com4'
  118.       'Com5'
  119.       'Com6'
  120.       'Com7'
  121.       'Com8')
  122.     TabOrder = 3
  123.   end
  124.   object Bauds: TRadioGroup
  125.     Left = 8
  126.     Top = 112
  127.     Width = 169
  128.     Height = 113
  129.     Caption = '&Baud rates:'
  130.     Columns = 2
  131.     Items.Strings = (
  132.       '300'
  133.       '600'
  134.       '1200'
  135.       '2400'
  136.       '4800'
  137.       '9600'
  138.       '19200'
  139.       '38400'
  140.       '57600'
  141.       '115200')
  142.     TabOrder = 4
  143.   end
  144.   object Paritys: TRadioGroup
  145.     Left = 192
  146.     Top = 8
  147.     Width = 145
  148.     Height = 89
  149.     Caption = '&Parity:'
  150.     Columns = 2
  151.     Items.Strings = (
  152.       'None'
  153.       'Odd'
  154.       'Even'
  155.       'Mark'
  156.       'Space')
  157.     TabOrder = 5
  158.   end
  159.   object Databits: TRadioGroup
  160.     Left = 192
  161.     Top = 112
  162.     Width = 145
  163.     Height = 57
  164.     Caption = '&Data bits:'
  165.     Columns = 2
  166.     Items.Strings = (
  167.       '8'
  168.       '7'
  169.       '6'
  170.       '5')
  171.     TabOrder = 6
  172.   end
  173.   object Stopbits: TRadioGroup
  174.     Left = 192
  175.     Top = 176
  176.     Width = 145
  177.     Height = 49
  178.     Caption = '&Stop bits:'
  179.     Columns = 2
  180.     Items.Strings = (
  181.       '1'
  182.       '2')
  183.     TabOrder = 7
  184.   end
  185. end
  186.